home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_098 / hddriver / driver / makefile < prev    next >
Makefile  |  1992-05-06  |  544b  |  30 lines

  1. #
  2. # Aztec C makefile
  3. #
  4.  
  5. # different caching algorithms
  6. CACHE=    trackcache.o
  7. #CACHE=    cache.o
  8. #CACHE=    nocache.o
  9.  
  10. # I am working on an IBM card version
  11. WD=     wd.o
  12.  
  13. PROG=    harddisk.device
  14. OBJS=    begin.o autoinit.o global.o $(CACHE) perform_io.o $(WD) posn.o\
  15.         lib.o libasm.o subprocess.o misc.o main.o hash.o
  16. CFLAGS=    +b +p +Iram:hd.hdr
  17. AFLAGS=    -c -d
  18.  
  19. $(PROG)    : ram:hd.hdr $(OBJS) makefile
  20.     ln -w -t +a -o $(PROG) $(OBJS) -lcl32
  21.     copy $(PROG) ram:
  22.  
  23. hd.hdr : hd.c hd.h
  24.     cc +p +Hhd.hdr hd.c
  25.  
  26. $(OBJS) : hd.hdr
  27.  
  28. ram:hd.hdr : hd.hdr
  29.     copy hd.hdr ram:hd.hdr
  30.